Title:Head First HTML and CSS, 2nd Edition
By:Elisabeth Robson, Eric Freeman
Publisher:O'Reilly Media
Formats:Print ,Ebook ,Safari Books Online
Print:August 2012
Ebook:August 2012
Pages:768
Tired of reading HTML books that only make sense after you're an expert?
Then it's about time you picked up Head First HTML and really learned HTML.
You want to learn HTML so you can finally create those web pages you've
always wanted, so you can communicate more effectively with friends, family,
fans, and fa... 阅读全帖
我老刑养了一群不懂XHTML的人。惭愧
Charles
01-13-2006, 10:05 AM
It is perfectly valid and a fine practice to eliminate the end tags in LI elements in HTML. And there are lots of other tags that you can eliminate. HTML Tidy can rid those for you if you like.
01-13-2006, 11:30 AM
for XHTML you are required to close every opened tagBut there's no good reason to be using XHTML in the first place. Stick with HTML 4.01 Strict and rid yourself of the shackles of unreasonable and unnecessary restrictions!
Charles
01-1... 阅读全帖
I'm following this java tutorials- Getting Started WIth Applets
here are my files:
======================================
HelloWorld.java
import javax.swing.*;
import java.lang.reflect.InvocationTargetException;
public class HelloWorld extends JApplet{
public void init(){
try {
SwingUtilities.invokeAndWait(new Runnable(){
public void run(){
JLabel label = new JLabel("Hello World!");
add(label);
}
... 阅读全帖
html is for formatting data for web browsers,
xml is for data representation,
xsl is for transform or tranlate xml data into html format or vise versa,
xsl is xml, so all rules that apply to xml apply to xsl too.
javascript is for any computation that html, xml, or xsl may need.
for example, you can use javascript to calculate the value of some xml, (or
html) node from values of other nodes in the same document
in html, javascripts are all used to handle user actions.
elements in HTML. And there are lots of other tags that you can eliminate.
HTML Tidy can rid those for you if you like.
reason to be using XHTML in the first place. Stick with HTML 4.01 Strict and
rid yourself of the shackles of unreasonable and unnecessary restrictions!
in HTML.That is complete and utter nonsense. The rules for HTML are set out
in the DTD and the DTD says that the LI element doesn't need a closing tag
and it says that the LI eleme:
ce... 阅读全帖